home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 26
/
Cream of the Crop 26.iso
/
program
/
shrlk201.zip
/
_SETUP.1
/
KeyGenerator.dpr
< prev
next >
Wrap
Text File
|
1997-07-22
|
270b
|
15 lines
program KeyGenerator;
uses
Forms,
Main in 'Main.pas' {frmUnlockGenerator};
{$R *.RES}
begin
Application.Initialize;
Application.Title := 'Key Generator';
Application.CreateForm(TfrmUnlockGenerator, frmUnlockGenerator);
Application.Run;
end.